@import url('https://fonts.googleapis.com/css2?family=Praise&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libertinus+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap');
body{
    background-color: #3a4c7e;
}
*{
    box-sizing: border-box;
    margin: 0px;
    padding: 5px 5px;
}
li, a, button{
    font-family: "newsreader";
    font-weight: 500px;
    font-size: 1.5vw;
    color: #fff5d9;
    text-decoration: none;
} 
header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.logo {
    max-width: 200px;
    cursor: pointer;
    margin-right: auto;
}
.nav__links{
    list-style: none;
}
.nav__links li {
    display: inline-block;
    padding: 0px 20px;
}
.nav__links li a {
    transition: all 0.3s ease 0s;
}

.nav__links li a:hover  {
    transition: all 0.3s ease 0s;
    color: #e07715;
} 
button {
    padding: 1% 0.5%;
    background-color: #fff5d9;
    color: #3a4c7e;
    border: none; 
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease 0s;;
}
button:hover {
    background-color: #fff5d98a;
    color: #3a4c7ebd;  
}
h1 {
    font-size: 5vw;
    font-family: "courgette";
    color: #fff5d9;
    padding-bottom: 5%;
}

.contact-container {
    height: 90vh;
    display: flex;
    align-items: start;
    float: left;
    justify-content: space-evenly;
}
.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contact-left-title h2{
    font-weight: 600;
    color: #fff5d9;
    font-size: 4.5vw;
    margin-bottom: 5px;
    font-family: "courgette";
}
.contact-left-title hr {
    border: none;
    width: 300px;
    height: 5px;
    background-color: #fff5d9;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contact-inputs{
    width: 500px;
    height: 40px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #000000;
    border-radius: 50px;
}
.contact-left textarea{
    height: 210px;
    padding-top: 15px;
    border-radius: 20px;
}
.contact-inputs:focus{
    border: 2px solid #000000;
}
.contact-inputs::placeholder{
    color: #3a4c7e;

}
footer{
    text-align: start;
    background-color: #3a4c7e;
    position: fixed;
    display: flex;
    bottom: 0;
    width: 100vw;
    font-size: 3vw;
    color: #fff5d9;

}
b {
    margin-bottom: 100px;
}
@media (max-width:480px){
.contact-inputs{
    width: 75vw;
}
.contact-right{
    display: none;
}   

}







